home *** CD-ROM | disk | FTP | other *** search
- global gSvFile, basicSavePath, dLM, origFile
-
- on exitFrame me
- FindMac = the platform contains "mac"
- if FindMac then
- the itemDelimiter = ":"
- gLF = RETURN
- else
- the itemDelimiter = "\"
- gLF = RETURN & numToChar(10)
- end if
- dsk = baSysFolder("Desktop")
- dLM = the itemDelimiter
- xyz = the moviePath
- origFile = xyz & "data" & dLM
- winSave = dsk & "\"
- fxObj = xtra("FileXtra4").new()
- if the platform contains "mac" then
- newMacPath = fxObj.fx_FileSaveAsDialog(basicSavePath, "THE UNINVITED Images", "Save Images to what Location ?")
- gSvFile = newMacPath & dLM
- if newMacPath = EMPTY then
- go("Save")
- end if
- else
- newWinPath = fxObj.fx_FileSaveAsDialog(basicSavePath, "THE UNINVITED Images", "Save Images to what location?", 0)
- gSvFile = newWinPath & dLM
- if newWinPath = EMPTY then
- go("Save")
- end if
- end if
- fxObj = 0
- end
-